Welcome![Sign In][Sign Up]
Location:
Search - data structure stack

Search list

[Data structsstack

Description: stack in data structure all code that ne-stack in data structure all code that needed
Platform: | Size: 17408 | Author: behz | Hits:

[Data structsstack

Description: 一位在红帽工作的Geek编写的数据结构代码-栈-Code of Data Structure Writen by a Geek working in Red Hat-PartIV(Stack)
Platform: | Size: 1024 | Author: liangerhu | Hits:

[Data structsdata-structure.tar

Description: 用C实现的常用数据结构集合,包括链表、堆栈、队列、位图、优先级队列、向量、堆等,对于初学数据结构是个相当不错的材料,都是自己亲自实现并测试的,各个数据结构的元素类型采用了通用类型(void *)-common data structures implemented using C language, including linked lists, stacks, queues, bit maps, priority queues, vector, stack, etc. A very good material for beginners
Platform: | Size: 10240 | Author: joey.zhao | Hits:

[Data structszhan

Description: 通过对队列的入栈出栈实行的程序,数据结构栈的操作的实验-Through the queue stack a stack to implement the procedures, data structure stack operation experiment
Platform: | Size: 2048 | Author: 蔡晶 | Hits:

[Data structsData-structure

Description: 这是一些经典算法程序,能很好地帮你理解栈队-This is the classical algorithm procedures, can be very good to help you understand the stack team
Platform: | Size: 2124800 | Author: dadas | Hits:

[Data structsSqStack

Description: 大学计算机专业教材《数据结构》中栈的实验、练习源码-University computer professional teaching materials" data structure" stack experiment, practice source code
Platform: | Size: 195584 | Author: wang zha jiu | Hits:

[Data structsMaze

Description: 该程序是数据结构栈的应用,迷宫游戏,该游戏自动完成迷宫的路径并显示。-The program is the application of data structure stack, a maze game, the game automatically complete the path of the labyrinth and displayed.
Platform: | Size: 939008 | Author: 柳祚鹏 | Hits:

[Data structsData-structure

Description: 数据结构的相关知识,链表,排序,堆栈等等,附有上机代码.-Knowledge of data structures, linked lists, sort, stack, etc., attached to the machine code.
Platform: | Size: 21951488 | Author: 老夫子 | Hits:

[Data structsmigong

Description: 数据结构堆栈的经典应用: /*一:迷宫问题用堆栈的方法: 求迷宫中一条从入口到出口的路径的算法可简单描述如下: 设定当前位置的初值为入口位置: do{ 若当前位置可通, 则{ 将当前位置插入堆栈顶 若该位置是出口位置,则结束 否则切换当前位置的东邻块为新的当前位置 } 否则, 若堆栈不空且栈顶位置尚有其他方向未经探索 则设定新的当前位置为沿顺时针方向转到的栈顶位置的下一相邻块 若栈不空但栈顶位置的四周均不可通, 则{删去栈顶位置 若栈不空,则重新测试新的栈顶位置, 直至找到一个可通的相邻或出栈至栈空 } }(栈不空)*/-Classic application of the data structure stack: /* A: maze problem with the stack: Seeking an entrance to the exit in the maze path algorithm can be described as follows: Set the initial value of the current location of the entrance location: do { If the current location through Then {the current position into the top of the stack If the location is the export position, the end Otherwise, switch the current location of the east block for the new current position } Otherwise, the If the stack is not empty and the stack position that there are other directions unexplored Set a new current position clockwise to the top of the stack location of the next adjacent block If the stack is not empty but the top of the stack around the location of the incommensurability {By deleting the top of the stack location If the stack is not empty, then re-test the new stack location Until you find a pass adjacent to the stack
Platform: | Size: 1024 | Author: 向曦 | Hits:

[Data structsStack

Description: 数据结构C语言版本的对栈的操作。功能齐全,简单易用。-The C language version of the data structure on the stack operation. Full-featured, easy to use.
Platform: | Size: 1024 | Author: wanjin | Hits:

[OtherSqStack

Description: 数据结构中栈的两个应用,进制转换和括号匹配-Data structure stack two application, hexadecimal conversion and matching brackets
Platform: | Size: 192512 | Author: li runbing | Hits:

[Data structsData-structure-experiments

Description: 数据结构8个实验完整源码+可执行程序 +95个其他程序源码+ 数据结构课程设计报告 C语言程序设计题附答案 C语言课程设计 实验2 顺序查找 排序 实验3 顺序栈基本操作 实验4 顺序循环队列基本操作 实验5 二叉树的建立及遍历 实验6 哈夫曼树的创建及编码 实验7 图的创建及遍历 实验8 查找与排序算法 推箱子游戏 -Complete source of data structures eight experimental the the+ executable program+95 a program source+ data structures course design C language programming question with answer C language curriculum design experiments to sort the sequential search experiment order to stack the basic operation of experimental four-loop sequence queue basic performing experiments and the establishment of five binary tree and traverse experiments Huffman tree creation and coding experiments map creation and traversal experiment find the Sokoban game with the sorting algorithm
Platform: | Size: 1861632 | Author: 何沙沙 | Hits:

[Data structsStack

Description: 堆栈的代码实现,VC++平台开发,C语言描述的数据结构-Stack code to achieve, VC++ platform development, the C language to describe the data structure
Platform: | Size: 171008 | Author: 李海锋 | Hits:

[Windows DevelopThe-inverse-set-of-the-chain-stack

Description: 链栈的逆置,主要是讲的链栈在数据结构中的一个基本操作。-Inverse set of the chain stack, mainly talk about the chain stack in the data structure of a basic operation.
Platform: | Size: 1024 | Author: 肖果平 | Hits:

[Data structsstack

Description: 封装了数据结构中基本的结构,主要实现了栈的功能,已经栈的各项基本操作-Encapsulates the basic structure of the data structure, the main achievement of the basic operation of the function of the stack, the stack
Platform: | Size: 5120 | Author: jeff | Hits:

[Data structsFindpathSourceCode

Description: 学习数据结构和算法的练习,使用栈结构对最终通路进行保存,"[Game AI]-[基础寻路走迷宫]-[数据结构栈Stack应用]" -Learning exercises data structures and algorithms, using the stack structure of the ultimate access to save, " [Game AI]- [based pathfinding Maze]- [Stack data structure stack applications]"
Platform: | Size: 1894400 | Author: 王连 | Hits:

[Data structsData-structure-calculations

Description: 包括对栈、图、链表、队列、二叉树等的操作。-Including the operation of the stack, linked lists, queues, binary tree.
Platform: | Size: 315392 | Author: 杨松林 | Hits:

[JSP/JavaStack

Description: 用Java语言编写数据结构中的堆栈,其中包括堆栈的建成和元素查找等问题-Written in Java stack data structure, including the built and elements of the stack Find
Platform: | Size: 1024 | Author: 夏梦媛 | Hits:

[Data structsstack

Description: 关于栈的各种操作,经典的数据结构算法必不可少的部分-all sorts of operation on stack data structure. It s the most popular stack algorithm
Platform: | Size: 12288 | Author: 繁华 | Hits:

[Compress-Decompress algrithmshuiwen

Description: 数据结构中,用C++语言,用栈和队列实现回文-Data structure, stack and queue C++ language palindrome
Platform: | Size: 229376 | Author: 刘洪强 | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 45 »

CodeBus www.codebus.net